home *** CD-ROM | disk | FTP | other *** search
- module oRoot1 is cBox
- with
- Flags is $00000152;
- release Editor:
- IOWindow is {$00000135,$0000002A,$0000021F,$000003BF,$00000000,$00000000,$00000000,$00000000};
- LayoutWindow is {$000001A3,$0000002E,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
- end;
- Name is "Root";
- Enabled is false; Cursor is oEmptyCursor;
-
- Width is 800; Height is 600;
-
-
- Elements is [
- oMovie2
- ];
- Events is [
- cKeyboardEvent
- with Flags is $00000004; Test is IsSpace;
- Commands is [
- cRunCommand
- with Flags is $00000004; Target is oMovie2; Mode is Toggle; end
- ];
- end,
- cKeyboardEvent
- with Value is "+";
- Commands is [
- cSetVolumeCommand
- with Mode is ExecuteHigher; end
- ];
- end,
- cKeyboardEvent
- with Value is "-";
- Commands is [
- cSetVolumeCommand
- with Flags is $00000004; Mode is ExecuteLower; end
- ];
- end,
- cKeyboardEvent
- with Value is "m";
- Commands is [
- cRunCommand
- with Flags is $00000004; Mode is Toggle; Rewind is true; end
- ];
- end
- ];
- end;
-
- object oMovie2 is cMPEGMovie
- with
- Flags is $00000054;
- Name is "Movie";
- Cursor is oEmptyCursor;
- AdjustX is AlignToCenter; AdjustY is AlignToMiddle;
- Width is 800; Height is 600;
-
- URL is "data/Videos/vaillant.mpg"; URLOption is GetDiskURL;
- Events is [
- cOnscreenEvent
- with Flags is $00000004;
- Commands is [
- cTokenCommand
- with TokenName is "stop"; Mode is ExecuteTargetUpwards; Target is oRoot1; end,
- cRunCommand
- with Target is oTargetSelf; Rewind is true; end
- ];
- end,
- cMouseDownEvent
- with Flags is $00000004;
- Commands is [
- cBrowseCommand
- with URL is "data/Interface/copyright.k"; URLOption is GetDiskURL; end
- ];
- end,
- cFinishedEvent
- with Flags is $00000004;
- Commands is [
- cBrowseCommand
- with URL is "data/Interface/copyright.k"; URLOption is GetDiskURL; end
- ];
- end
- ];
- end;